// Aufgabe_2_3a_Verkehrsschilder_01

function setup() {
createCanvas(600, 300);
  background(220);
}

function draw() {
  fill(255, 0, 0);
  ellipse(150, 150, 200, 200);
  fill(255);
  rect(80, 132, 140, 40);
  noStroke();
  fill(0, 0, 255);
  rect(340, 50, 170, 200);
  fill(255);
  rect(409, 125, 30, 125);
  fill(255, 0, 0);
  rect(392, 123, 64, 30);
}
